;try to figure out a place where the user usually installs his games
(if (exists "Games:" (noreq) )
(set @default-dest "Games:")
(if (exists "SYS:Games" (noreq) )
(set @default-dest "SYS:Games")
(if (exists "Work:Games" (noreq) )
(set @default-dest "Work:Games")
(if (exists "JEUX:" (noreq) )
(set @default-dest "JEUX:")
(set @default-dest "SYS:")
)
)
)
)
(set #dest
(tackon (askdir (prompt "Where would you like " @app-name " installed?\n"
"A drawer called " GameDir " will be created.")
(help @askdir-help)
(default @default-dest)
(newpath)
)
GameDir
)
)
(message "\n\n\nThis loader needs the JST program (NOT INCLUDED)\n to be copied in your path\n\n(if you don't have it already)\n\nJST is available from aminet (game/patch) or on my site")
(set #CI_unit
(askchoice
(prompt "From which disk unit do you want\nto install the game")
(help @askoptions-help)
(choices
"DF0:"
"DF1:"
"DF2:"
"DF3:"
)
)
)
(set #CI_drive ("DF%ld:" #CI_unit))
(makedir #dest
(help @makedir-help)
(infos)
)
;----------------------------
(copyfiles
(help @copyfiles-help)
(source "SpCrusHD")
(dest #dest)
(infos)
)
(copyfiles
(help @copyfiles-help)
(source "spcrushd.readme")
(dest #dest)
(infos)
)
(message ("\nInsert %s game disk into drive %s !" @app-name #CI_drive))